encoding/hex.decoder.in (field)
15 uses
encoding/hex (current package)
hex.go#L178: in []byte // input buffer (encoded form)
hex.go#L190: if len(d.in) < 2 && d.err == nil {
hex.go#L192: numCopy = copy(d.arr[:], d.in) // Copies either 0 or 1 bytes
hex.go#L194: d.in = d.arr[:numCopy+numRead]
hex.go#L195: if d.err == io.EOF && len(d.in)%2 != 0 {
hex.go#L197: if a := reverseHexTable[d.in[len(d.in)-1]]; a > 0x0f {
hex.go#L198: d.err = InvalidByteError(d.in[len(d.in)-1])
hex.go#L206: if numAvail := len(d.in) / 2; len(p) > numAvail {
hex.go#L209: numDec, err := Decode(p, d.in[:len(p)*2])
hex.go#L210: d.in = d.in[2*numDec:]
hex.go#L212: d.in, d.err = nil, err // Decode error; discard input remainder
hex.go#L215: if len(d.in) < 2 {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |